home *** CD-ROM | disk | FTP | other *** search
/ Aminet 52 / Aminet 52 (2002)(GTI - Schatztruhe)[!][Dec 2002].iso / Aminet / dev / gg / bing-1.1.3.lha / bing-1.1.3 / src / win32 / types.h < prev    next >
C/C++ Source or Header  |  1997-06-06  |  427b  |  20 lines

  1. #ifndef bing_types_h_
  2. #define bing_types_h_
  3.  
  4. #include <sys/types.h>
  5.  
  6. /*
  7.  * Missing in Microsoft's types.h
  8.  */
  9.  
  10. typedef unsigned short    u_short;
  11. typedef unsigned long    u_long;
  12.  
  13. typedef char* caddr_t;
  14. typedef u_short n_short;        /* short as received from the net */
  15. typedef u_long    n_long;            /* long as received from the net */
  16.  
  17. typedef    u_long    n_time;            /* ms since 00:00 GMT, byte rev */
  18.  
  19. #endif    /* End of File */
  20.